home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / X11 / Xaw / VendorEP.h < prev    next >
C/C++ Source or Header  |  2006-04-12  |  3KB  |  85 lines

  1. /* $Xorg: VendorEP.h,v 1.4 2001/02/09 02:03:47 xorgcvs Exp $ */
  2.  
  3. /*
  4.  * Copyright 1991 by OMRON Corporation
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and its
  7.  * documentation for any purpose is hereby granted without fee, provided that
  8.  * the above copyright notice appear in all copies and that both that
  9.  * copyright notice and this permission notice appear in supporting
  10.  * documentation, and that the name of OMRON not be used in advertising or
  11.  * publicity pertaining to distribution of the software without specific,
  12.  * written prior permission.  OMRON makes no representations about the
  13.  * suitability of this software for any purpose.  It is provided "as is"
  14.  * without express or implied warranty.
  15.  *
  16.  * OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  17.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  18.  * OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  19.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ACTION,
  21.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  22.  * SOFTWARE. 
  23.  *
  24.  *    Author:    Seiji Kuwari    OMRON Corporation
  25.  *                kuwa@omron.co.jp
  26.  *                kuwa%omron.co.jp@uunet.uu.net
  27.  */                
  28.  
  29. /*
  30.  
  31. Copyright 1994, 1998  The Open Group
  32.  
  33. Permission to use, copy, modify, distribute, and sell this software and its
  34. documentation for any purpose is hereby granted without fee, provided that
  35. the above copyright notice appear in all copies and that both that
  36. copyright notice and this permission notice appear in supporting
  37. documentation.
  38.  
  39. The above copyright notice and this permission notice shall be included in
  40. all copies or substantial portions of the Software.
  41.  
  42. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  43. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  44. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  45. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  46. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  47. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  48.  
  49. Except as contained in this notice, the name of The Open Group shall not be
  50. used in advertising or otherwise to promote the sale, use or other dealings
  51. in this Software without prior written authorization from The Open Group.
  52.  
  53. */
  54. /* $XFree86: xc/lib/Xaw/VendorEP.h,v 1.5 2001/01/17 19:42:36 dawes Exp $ */
  55.  
  56. #ifndef _VendorEP_h
  57. #define _VendorEP_h
  58.  
  59. #include <X11/Xaw/XawImP.h>
  60.  
  61. typedef struct {
  62.     XtPointer    extension;
  63. } XawVendorShellExtClassPart;
  64.  
  65. typedef    struct _VendorShellExtClassRec {
  66.     ObjectClassPart    object_class;
  67.     XawVendorShellExtClassPart    vendor_shell_ext_class;
  68. } XawVendorShellExtClassRec;
  69.  
  70. typedef struct {
  71.     Widget    parent;
  72.     XawImPart    im;
  73.     XawIcPart    ic;
  74. #ifndef OLDXAW
  75.     XtPointer pad[4];    /* for future use and keep binary compatability */
  76. #endif
  77. } XawVendorShellExtPart;
  78.  
  79. typedef    struct XawVendorShellExtRec {
  80.     ObjectPart    object;
  81.     XawVendorShellExtPart    vendor_ext;
  82. } XawVendorShellExtRec, *XawVendorShellExtWidget;
  83.  
  84. #endif    /* _VendorEP_h */
  85.